home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / softwareupdate / system / arexx_for_beginners / articles_01-10 / example5-5.rexx < prev    next >
OS/2 REXX Batch file  |  1995-04-06  |  228b  |  7 lines

  1. /* Example 5-5 */
  2. /* This program has an error and so will not run */
  3.  
  4. SAY "I am using inverted commas"  /* this is OK */
  5. SAY 'I am using apostrophes'      /* this is OK */
  6. SAY "This is not allowed'         /* this is NOT OK */
  7.